home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
AUDIO
/
MIDICOM2
/
MIDICONS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-30
|
1KB
|
43 lines
{ $Header: G:/delphi/midi/vcs/midicons.pas 1.1 30 Apr 1996 19:04:40 DAVEC $ }
{ Written by David Churcher <dchurcher@cix.compulink.co.uk>,
released to the public domain. }
{ MIDI Constants }
unit Midicons;
interface
uses Messages;
const
MIDI_ALLNOTESOFF = $7B;
MIDI_NOTEON = $90;
MIDI_NOTEOFF = $80;
MIDI_KEYAFTERTOUCH = $a0;
MIDI_CONTROLCHANGE = $b0;
MIDI_PROGRAMCHANGE = $c0;
MIDI_CHANAFTERTOUCH = $d0;
MIDI_PITCHBEND = $e0;
MIDI_SYSTEMMESSAGE = $f0;
MIDI_BEGINSYSEX = $f0;
MIDI_MTCQUARTERFRAME = $f1;
MIDI_SONGPOSPTR = $f2;
MIDI_SONGSELECT = $f3;
MIDI_ENDSYSEX = $F7;
MIDI_TIMINGCLOCK = $F8;
MIDI_START = $FA;
MIDI_CONTINUE = $FB;
MIDI_STOP = $FC;
MIDI_ACTIVESENSING = $FE;
MIDI_SYSTEMRESET = $FF;
MIM_OVERFLOW = WM_USER; { Input buffer overflow }
MOM_PLAYBACK_DONE = WM_USER+1; { Timed playback complete }
implementation
end.